/* Custom Styles */
body {
    padding-top: 0; /* Reset default padding */
    margin: 0; /* Reset default margin */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; /* Add position relative to body */
  }

  /* Change the background color of the header */
  .navbar {
    background-color: #efd0094a !important; /* Change to your desired color */
  }

  /* Change the colors of menu buttons and menu list text */
  .navbar-nav .nav-link {
    color: #ffffff; /* Text color */
    border: 1px solid #ffffff; /* Border color */
    border-radius: 8px; /* Border radius */
    margin-right: 10px; /* Margin between menu items */
  }

  .navbar-nav .nav-link:hover {
    background-color: #ffffff; /* Background color on hover */
    color: #007bff; /* Text color on hover */
  }

  /* Add creative border colors */
  .navbar-nav .nav-link:nth-child(odd) {
    border-color: #eee; /* Red border color for odd menu items */
  }

  .navbar-nav .nav-link:nth-child(even) {
    border-color: #7fff00; /* Green border color for even menu items */
  }